:root {
  --text-color: #000;
  --secondary-color: #5151ef;
  --main-color: white;
  --light-bg-color: rgb(246, 246, 246);
  --dark-bg-color: #0f0f28;
  --sub-text-color: #808080;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: var(--dark-bg-color);
  color: var(--main-color);
  height: 100%;
  overflow-x: hidden;
}

.coming-soon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  padding: 20px;
  overflow: hidden;
}

.stars {
  background: url('https://www.transparenttextures.com/patterns/stardust.png');
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  animation: moveStars 40s linear infinite;
  opacity:0.6;
}

@keyframes moveStars {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-50%, -50%); }
}

.content {
  z-index: 2;
}

.content h1 {
  font-size: 3rem;
  color: var(--main-color);
}

.content h2 {
  font-size: 2rem;
  margin: 10px 0;
  color: var(--secondary-color);
}

.content p {
  color: var(--sub-text-color);
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 40px;
  font-size: 1.2rem;
}

.countdown span {
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-glow {
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--secondary-color), #6c63ff);
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  box-shadow: 0 10px 20px rgba(81, 81, 239, 0.5);
  transition: all 0.4s ease;
}

.btn-glow:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(81, 81, 239, 0.7);
}

@media (max-width: 600px) {
  .content h1 {
    font-size: 2rem;
  }

  .countdown {
    flex-direction: column;
    gap: 10px;
  }
}
